home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World Interactive 7
/
PC World Interactive 7.iso
/
program
/
ctutor.exe
/
SOURCE
/
WHILE.C
< prev
next >
Wrap
C/C++ Source or Header
|
1994-05-15
|
459b
|
26 lines
/* Chapter 3 - Program 1 - WHILE.C */
/* This is an example of a "while" loop */
void main()
{
int count;
count = 0;
while (count < 6) {
printf("The value of count is %d\n", count);
count = count + 1;
}
}
/* Result of execution
The value of count is 0
The value of count is 1
The value of count is 2
The value of count is 3
The value of count is 4
The value of count is 5
*/